From 0a9f0e2f22cc071cd5f467cf52aaf07db577db4c Mon Sep 17 00:00:00 2001 From: Tom Gilder Date: Thu, 20 Jan 2005 11:28:46 +0000 Subject: [PATCH] Remove no longer needed Vary: Cookie header to fix IE5.0 caching --- includes/RawPage.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/includes/RawPage.php b/includes/RawPage.php index 41d599f805..2c9b8c5de1 100644 --- a/includes/RawPage.php +++ b/includes/RawPage.php @@ -75,8 +75,6 @@ class RawPage { header( "Content-type: ".$this->mContentType.'; charset='.$this->mCharset ); # allow the client to cache this for 24 hours header( 'Cache-Control: s-maxage='.$this->mSmaxage.', max-age='.$this->mMaxage ); - # Make sure each logged-in user gets his/her own stylesheet - header( 'Vary: Cookie' ); if($this->mGen) { $sk = $wgUser->getSkin(); $sk->initPage($wgOut); -- 2.20.1